home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / grafik / 3d & render tools / irit / man / man6 / srefine.6 < prev    next >
Encoding:
Text File  |  1996-07-16  |  882 b   |  27 lines

  1. .TH SREFINE
  2.  6 "IRIT Version 6.0" 
  3. .SH NAME
  4. SREFINE
  5.  
  6.  
  7.  
  8.  SurfaceType SREFINE( SurfaceType Srf, ConstantType Direction,
  9.                       NumericType Replace, ListType KnotList )
  10.  
  11. Provides the ability to Replace a knot vector of Srf or refine 
  12. it in the specified direction Direction (ROW or COL).
  13. KnotList is a list of knots to refine Srf at. All knots should be
  14. contained in the parametric domain of Srf in Direction. If the knot
  15. vector is replaced, the length of KnotList should be identical to the
  16. length of the original knot vector of Srf in Direction. If Srf
  17. is a Bezier surface, it is automatically promoted to be a Bspline surface.
  18.  
  19. Example:
  20.  
  21.     Srf = SREFINE( SREFINE( Srf,
  22.                             ROW, FALSE, list( 0.333, 0.667 ) ),
  23.                    COL, FALSE, list( 0.333, 0.667 ) );
  24.  
  25. refines Srf in both directions by adding two more knots at 0.333 and
  26. 0.667.
  27.